home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / SnoozeAlarm / atomicity.config.h next >
Text File  |  2000-06-23  |  2KB  |  49 lines

  1. /****************************************************************************************
  2.     atomicity.config.h
  3.     
  4.         The grabbing hands
  5.             grab all they can.
  6.         Everything counts
  7.             in large amounts.
  8.     
  9.     Copyright © 1998-2000 Red Shed Software. All rights reserved.
  10.     by Jonathan 'Wolf' Rentzsch (jon@redshed.net)
  11.     This code requires a 68020 or later or any PowerPC.
  12.     
  13.     Commenter    Date                Comment
  14.     ---------    -----------------    -----------------------------------------------------
  15.     wolf        Thu, Apr 22, 1999    Created.
  16.     
  17.     ************************************************************************************/
  18.  
  19. #ifndef        _atomicity_config_
  20. #define        _atomicity_config_
  21.  
  22. /****************************************************************************************
  23.     Open Transport Compatibility Options
  24.  
  25.     Define DontUseOpenTransport *or* UseOpenTransportIfAvailable *or*
  26.     OnlyUseOpenTransport. If you don't define any of these, the default is
  27.     UseOpenTransportIfAvailable.
  28.     
  29.     DontUseOpenTransport:
  30.         o    Open Transport Libraries: Not Required.
  31.         o    Runtime Overhead: None.
  32.     
  33.     UseOpenTransportIfAvailable:
  34.         o    Open Transport Libraries: Required (preferably weakly imported).
  35.         o    Runtime Overhead: Small (larger if requirements checking is turned on).
  36.     
  37.     OnlyUseOpenTransport:
  38.         o    Open Transport Libraries: Required (preferably strongly imported).
  39.         o    Runtime Overhead: None.
  40.     
  41.     ************************************************************************************/
  42. #pragma mark    -
  43. #pragma mark    --Open Transport Compatibility Options--
  44.  
  45. #define        DontUseOpenTransport
  46. //#define        UseOpenTransportIfAvailable
  47. //#define        OnlyUseOpenTransport
  48.  
  49. #endif    //    _atomicity_config_